iT邦幫忙

0

[C#] 多個控制項共用Click事件

  • 分享至 

  • xImage
  •  

https://ithelp.ithome.com.tw/upload/images/20210811/201347368IQOu8c604.png

使用方法

//如果Type是Button
if (sender.GetType().Name.Equals("Button"))
{
    Button btn = (Button)sender;

    switch (btn.Name)
    {
        case "btn_0":
        case "btn_1":
        case "btn_2":
        case "btn_3":
        case "btn_4":
        case "btn_5":
        case "btn_6":
        case "btn_7":
        case "btn_8":
        case "btn_9":
            if (InputValue.Length >= 20) break;
            checkClear();
            InputValue += btn.Text;
            break;
       ...
    }
}
//如果Type是PictureBox
else
{
    this.Visible = false;
}

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言